058ba59390fa322ab64924f859df4a22fa7aae45,src/com/t_oster/visicut/VisicutModel.java,VisicutModel,saveToFile,#MaterialManager#MappingManager#File#,572
Before Change
public void saveToFile(MaterialManager pm, MappingManager mm, File f) throws FileNotFoundException, IOException
{
PlfFile plf = this.getPlfFile();
FileInputStream in;
byte[] buf = new byte[1024];
int len;
After Change
public void saveToFile(MaterialManager pm, MappingManager mm, File f) throws FileNotFoundException, IOException
{
List<PlfPart> plf = this.getPlfFile().getPartsCopy();
FileInputStream in;
byte[] buf = new byte[1024];
int len;